home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / FORMAT.HLP < prev    next >
Text File  |  1985-09-10  |  3KB  |  79 lines

  1. -----------------------  FORMAT - External DOS Command  ------------------------
  2.  
  3. FORMAT initializes a new disk for use with DOS.
  4.  
  5. FORMAT:   FORMAT [d:][/S][/1][/8][/V][/B]
  6.  
  7. REMARKS:
  8.  
  9.    d: - the drive of the disk to be initialized.  If omitted, the default drive
  10.         is assumed.
  11.    /S - copies the operating system files from the default drive to the new
  12.         disk.  The new disk will be capable of starting DOS.
  13.    /1 - formats a diskette for single-sided use only.
  14.    /8 - formats a diskette with 8 sectors per track.  If omitted, 9 sectors per
  15.         track is assumed.
  16.    /V - lets you assign a volume label to the disk.  The label may be from 1 to
  17.         11 characters.
  18.    /B - formats an 8 sector per track diskette with space allocated for DOS
  19.         system files.  The system files are not placed on the diskette.  This
  20.         allows both DOS Version 1 and Version 2 to be placed on the diskette
  21.         with the SYS command.  If /B is not used, only DOS Version 2 can be put
  22.         on the diskette with the SYS command.
  23.  
  24.    /V cannot be used with /8.  /V and /S cannot be used with /B.
  25.  
  26.    Valid characters for a volume label are:
  27.  
  28.           A-Z, 0-9, and the symbols:  $ & # @ ! % ` ' ( ) - { } _ ^ ~
  29.  
  30.    Existing information on a disk will be lost when the disk is formatted.
  31.  
  32.    If defective tracks are detected during the format, they will be marked as
  33.    reserved to prevent their use.
  34.  
  35.    FORMAT produces a status report as shown below.  The line numbers are added
  36.    for reference in the explanation below:
  37.  
  38.       1   362496 bytes total disk space
  39.       2    40960 bytes used by system
  40.       3   321536 bytes available on disk
  41.  
  42.       Line 1 - total space on the disk.
  43.       Line 2 - total space used by DOS system files.
  44.       Line 3 - total space available for use.
  45.  
  46.  
  47. NOTE:  The VOL command can be used to display a volume label.  A volume label
  48.    can be created only at the time the disk is formatted.
  49.  
  50.  
  51. WARNING:  Existing information on a disk will be lost when the disk is
  52.    formatted.  If the drive letter, d:, is omitted, FORMAT assumes the disk in
  53.    the default drive is to be formatted.  This can be dangerous since you could
  54.    accidentally format the wrong disk.  Be sure you have specified the correct
  55.    drive letter before issuing a FORMAT command.
  56.  
  57.  
  58. EXAMPLES:
  59.  
  60. Format a diskette in drive B:
  61.  
  62.           FORMAT B:
  63.  
  64.  
  65. Format a diskette in drive B.  Give the diskette the volume label "123DATA":
  66.  
  67.           FORMAT B:/V
  68.  
  69.           Volume label (11 characters, ENTER for none)? 123DATA
  70.  
  71.                                                           
  72.                         DOS prompt           enter 123DATA and press RETURN
  73.  
  74.  
  75. Format a diskette in drive B.  Copy the operating system files during the
  76. format so the new diskette will be capable of starting DOS:
  77.  
  78.           FORMAT B:/S
  79.